home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / PART_F / VIEWMAN / TEXT.H < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-10  |  1.4 KB  |  42 lines

  1. /* Text for the help dialog box */
  2. #define MAX_PAGE 3
  3.  
  4. #define MAX_HELP_PAGE ( MAX_PAGE - 1 )
  5.  
  6. char *help_text[MAX_PAGE][9] =  {
  7.              { "                             pg.1",
  8.                "    To select a brush:           ",
  9.                "1-Click on item in library window",
  10.                "2-Left-click existing world item ",
  11.                "3-While holding rite button, move",
  12.                "4-Use pre-programmed Function Key",
  13.                "    After brush is selected:     ",
  14.                " Left click: Stamps into world   ",
  15.                "Right click: Exits brush cursor  "
  16.              },
  17.              
  18.              { "                             pg.2",
  19.                "Arrow keys move world in window  ",
  20.                "Shft-Func remembers current brush",
  21.                "Brush priority in local region:  ",
  22.                "     Topped by Clr/Home key      ",
  23.                "     Bottomed by Insert key      ",
  24.                "Hold Ctrl key to engage Grid Mode",
  25.                "   Set Grid params in Edit menu  ",
  26.                "Hold Shift key for Contain mode  "
  27.              },
  28.              
  29.              { "When cursor is a brush:      pg.3",
  30.                "  'H' = Horizontal Flip          ",
  31.                "  'V' = Vertical Flip            ",
  32.                "When cursor is an arrow:         ",
  33.                "'C' = cluster mode--pick items   ",
  34.                " with left click, exit with right",
  35.                "'B' = bridge mode--pick 3 items  ",
  36.                "'R' = rectangle mode--left button",
  37.                " sizes, right exits. Color is 0-F"
  38.              }
  39.            };
  40.  
  41. int Help_Page;           
  42.